{% set rows = sql("select * from highlight where book_id = :id", {"id": id}) %} {% if not rows %} {{ raise_404("Book not found") }} {% endif %}
{% for hl in rows %} {% if hl.note != None %} {% else %} {% endif %} {% endfor %}
ID Highlight Note
{{ hl.id }} {{ hl.text }}{{ hl.note}}